00001 #ifndef RT_H_ 00002 #define RT_H_ 00003 00010 class Rt 00011 { 00012 private: 00013 float angularAccelerationX; 00014 float angularAccelerationY; 00015 float angularAccelerationZ; 00016 public: 00017 Rt(); 00018 int decompose(char *receivingMessage); 00019 float getAngularAccelerationX(); 00020 float getAngularAccelerationY(); 00021 float getAngularAccelerationZ(); 00022 }; 00023 00024 #endif /* RT_H_ */